home *** CD-ROM | disk | FTP | other *** search
/ Super PC 34 / Super PC 34 (Shareware).iso / spc / UTIL / DJGPP2 / V2 / DJTST200.ZIP / tests / libc / ansi / stdio / mktemp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1995-03-20  |  197 b   |  17 lines

  1. #include <stdio.h>
  2. #include <string.h>
  3.  
  4. int
  5. main(void)
  6. {
  7.   char l[100];
  8.   int i;
  9.   for (i=0; i<35; i++)
  10.   {
  11.     strcpy(l, "mkXXXXXX");
  12.     mktemp(l);
  13.     puts(l);
  14.   }
  15.   return 0;
  16. }
  17.